home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 1 / LIGHT-ROM 1 (Amiga Library Services)(1994).iso / ffdisks / d945.lha / Reminder / src / src.lha / CalcDate.h < prev    next >
C/C++ Source or Header  |  1993-04-19  |  483b  |  22 lines

  1. /* Prototypes for CalcDate.c */
  2.  
  3. /* $Id: CalcDate.h,v 1.1 1993/04/04 13:37:54 Matti_Rintala Exp $ */
  4.  
  5. #ifndef CALCDATE_H
  6. #define CALCDATE_H
  7.  
  8. #include <time.h>
  9. #include <exec/types.h>
  10.  
  11. void gettoday(time_t *today);
  12.  
  13. void makedate(time_t *date, time_t *today,
  14.           short dday, short dmonth, short dyear, short dwday);
  15.  
  16. void makeprevdate(time_t *date, time_t *today,
  17.           short dday, short dmonth, short dyear, short dwday);
  18.  
  19. short weekday(short day, short month, short year);
  20.  
  21. #endif
  22.